GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( da5f76...59bb8c )
by Keith
76:35
created

30data-inquiry.js ➔ Initialize   A

Complexity

Conditions 2

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
"use strict";
2
app.controller('inquiryController', ['$scope', 'Security', function ($scope, Security, $rootScope) {
3
    $scope.directiveScopeDict = {};
4
	$scope.inquiryModel = {};
5
    $scope.inquiryModel.Record = {};
6
    function Initialize(){
7
		
8
    }
9
    Initialize();
10
11
    $scope.EventListener = function(scope, iElement, iAttrs, controller){
12
        console.log("<"+iElement[0].tagName+">" +" Directive overried EventListener()");
0 ignored issues
show
Debugging Code introduced by
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
13
        var prgmID = scope.programId;
14
		var tagName = iElement[0].tagName;
15
        if($scope.directiveScopeDict[prgmID] == null || typeof($scope.directiveScopeDict[prgmID]) == "undefined"){
16
          $scope.directiveScopeDict[prgmID] = scope;
17
        }
18
		
19
        iElement.ready(function() {
20
			console.dir(iAttrs)
21
        })
22
    }
23
24
    $scope.SetDefaultValue = function(scope, iElement, iAttrs, controller){
25
		$scope.inquiryModel.InquiryCriteria.UserID = "";
26
		$scope.inquiryModel.InquiryCriteria.LoginID = "";
27
		$scope.inquiryModel.Record.IsDisabled = "N";
28
    }
29
30
    $scope.StatusChange = function(fieldName, newValue, newObj, scope, iElement, iAttrs, controller){
31
    }
32
33
    $scope.ValidateBuffer = function(scope, iElement, iAttrs, controller){
34
        return true;
35
    }
36
37
    $scope.CustomSelectedToRecord = function(sRecord, rowScope, scope, iElement, controller){
38
    }
39
40
    $scope.CustomSubmitDataResult = function(responseObj, httpStatusCode, scope, iElement, attrs, ctrl){
41
    }
42
}]);